home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / danix201.zip / MAN.1 < prev    next >
Text File  |  1994-01-23  |  2KB  |  41 lines

  1. MAN(1)            The Danix Utilities                MAN(1)
  2.  
  3.     man - online manual page viewer
  4.  
  5. SYNOPSIS
  6.     man [ -M path | -m path ] [section] <command>
  7.     man
  8.  
  9. DESCRIPTION
  10.     Man searches for and displays an online manual page. By default
  11.     man searches the subdirectories of c:\man for the requested man
  12.     page.  The environment variable MANPATH may replace this default
  13.     path with a semi-colon separated list of paths to be searched.
  14.     Each directory in the path is assumed to have subdirectories which
  15.     contain the manual pages.  A manual page is a plain text file of
  16.     the form <command>.*
  17.  
  18.     -M  Replace the default path with the given path
  19.  
  20.     -m  Append the given path to the default path
  21.  
  22.     man invoked with a <command> parameter will display the manual
  23.     page for the given command
  24.  
  25.     man invoked without a <command> parameter will display a list of
  26.     the available man pages
  27.  
  28.     If man is invoked with a [section] parameter, only the subdirectory
  29.     cat[section] will be searched for each directory in the man path.
  30.     For example, 'man 3 foo' will search for a foo.* man page in the
  31.     subdirectory cat3 of each directory in the man path.
  32.  
  33.     If the environment variable PAGER has been defined, this program
  34.     will be invoked to display the man page.  If it is not defined,
  35.     man will page the command with a built-in limited pager.  The
  36.     commands for the built-in pager are 'q' to quit, space to page
  37.     down, and carriage return to advance by one line.
  38.  
  39. EXAMPLES
  40.     set MANPATH=C:\DANIX\MAN;C:\DOS\MAN
  41.